From d5dd7d18cf7c08744e01900a1799a42a68ef6042 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 4 Jun 1993 05:21:01 +0000 Subject: [PATCH] [__GNUC__ >= 2]: Don't include alloca.h. --- src/m/sparc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/m/sparc.h b/src/m/sparc.h index 392189a9f5e..dde025563b6 100644 --- a/src/m/sparc.h +++ b/src/m/sparc.h @@ -5,7 +5,7 @@ This file is part of GNU Emacs. GNU Emacs is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 1, or (at your option) +the Free Software Foundation; either version 2, or (at your option) any later version. GNU Emacs is distributed in the hope that it will be useful, @@ -81,7 +81,7 @@ NOTE-END */ in the file alloca.s should be used. */ #define HAVE_ALLOCA -#if __GNUC__ >= 2 /* Modern versions of GCC handle alloca directly. */ +#if __GNUC__ < 2 /* Modern versions of GCC handle alloca directly. */ #include #endif -- 2.30.2